github.com/refraction-networking/utls.clientHelloMsg.supportedCurves (field)

26 uses

	github.com/refraction-networking/utls (current package)
		handshake_client.go#L83: 		supportedCurves:              config.curvePreferences(maxVersion),
		handshake_client.go#L159: 		if len(hello.supportedCurves) == 0 {
		handshake_client.go#L162: 		curveID := hello.supportedCurves[0]
		handshake_client.go#L187: 			if slices.Contains(hello.supportedCurves, X25519) {
		handshake_client_tls13.go#L329: 		if !slices.Contains(hello.supportedCurves, curveID) {
		handshake_messages.go#L80: 	supportedCurves                  []CurveID
		handshake_messages.go#L199: 	if len(m.supportedCurves) > 0 {
		handshake_messages.go#L207: 					for _, curve := range m.supportedCurves {
		handshake_messages.go#L554: 				m.supportedCurves = append(m.supportedCurves, CurveID(curve))
		handshake_messages.go#L727: 		supportedCurves:                  slices.Clone(m.supportedCurves),
		handshake_server.go#L279: 	hs.ecdheOk = supportsECDHE(c.config, c.vers, hs.clientHello.supportedCurves, hs.clientHello.supportedPoints)
		handshake_server.go#L999: 		SupportedCurves:   clientHello.supportedCurves,
		handshake_server_tls13.go#L210: 		return !slices.Contains(hs.clientHello.supportedCurves, group)
		handshake_server_tls13.go#L676: 		len(ch.supportedCurves) != len(ch1.supportedCurves) ||
		handshake_server_tls13.go#L692: 	for i := range ch.supportedCurves {
		handshake_server_tls13.go#L693: 		if ch.supportedCurves[i] != ch1.supportedCurves[i] {
		key_agreement.go#L171: 	for _, c := range clientHello.supportedCurves {
		u_conn.go#L578: 		inner.supportedCurves = uconn.HandshakeState.Hello.SupportedCurves
		u_handshake_client.go#L205: 		supportedCurves:              config.curvePreferences(maxVersion),
		u_handshake_client.go#L281: 		if len(hello.supportedCurves) == 0 {
		u_public.go#L404: 			supportedCurves:                  chm.SupportedCurves,
		u_public.go#L457: 			SupportedCurves:              chm.supportedCurves,